home *** CD-ROM | disk | FTP | other *** search
/ Dominator 3 / Dominator 3.bin / doom2 / doom / doom1666.bas < prev    next >
Encoding:
BASIC Source File  |  1995-01-28  |  1022 b   |  27 lines

  1. CLS
  2. PRINT "                      DOOM 1.666"
  3. PRINT "PATCH DOOM.WAD TO FIX FLAG ERROR IS EPISODE 3, MISSION 9"
  4. PRINT "This patch fixes a MAP error that existed previously, but"
  5. PRINT "did not become apparent until the more precise engine of"
  6. PRINT "version 1.666 was released. What happened is that for"
  7. PRINT "Whatever reason, a sector in a room containing 2 Caco-"
  8. PRINT "demons and numerous Imps is tagged to a linedef on the"
  9. PRINT "bridge over the lava pit. This patch removes this flag"
  10. PRINT "so that the game will run normally."
  11. PRINT
  12. PRINT "If you are not using QBASIC or QuickBASIC, add sequential"
  13. PRINT "line numbers to each of these lines."
  14. PRINT
  15. PRINT "Run this file from within your DOOM directory. Remember to"
  16. PRINT "to first copy DOOM.WAD to a backup file, such as DOOM.BAK."
  17. PRINT
  18. LINE INPUT "Press the ENTER key to continue...",A$
  19. OPEN "R", 1, "DOOM.WAD"
  20. FIELD 1, 128 AS A$
  21. GET #1, 19955
  22. MID$(A$, 15, 1) = CHR$(0)
  23. PUT #1, 19955
  24. CLOSE #1
  25. PRINT "DAVID GOBEN, JANUARY 14, 1995 --- davgoben@ix.netcom.com"
  26.  
  27.